home *** CD-ROM | disk | FTP | other *** search
/ Interactive Preview: Enemy of the State / Interactive Preview: Enemy of the State.iso / pc / main.dxr / 00475_Big movie.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  541 b   |  25 lines

  1. on mouseUp me
  2.   if the visible of sprite 8 = 1 then
  3.     set the movieTime of sprite 6 to the movieTime of sprite 8
  4.     updateStage()
  5.     set the movieRate of sprite 8 to 0
  6.     set the visible of sprite 7 to 0
  7.     set the visible of sprite 8 to 0
  8.     set the visible of sprite 6 to 1
  9.     set the volume of sprite 6 to 255
  10.     set the movieRate of sprite 6 to 1
  11.   end if
  12. end
  13.  
  14. on mouseEnter me
  15.   if the visible of sprite 8 = 1 then
  16.     cursor(280)
  17.   end if
  18. end
  19.  
  20. on mouseLeave me
  21.   if the visible of sprite 8 = 1 then
  22.     cursor(0)
  23.   end if
  24. end
  25.